View Javadoc
1 /* 2 * Created on 2004.09.23. 3 * 4 * In p2p project 5 */ 6 7 8 package net.sf.bigyo.container.config; 9 10 import net.sf.bigyo.api.ContainerException; 11 12 /*** 13 * @author zsombor 14 * 15 * Created at 1:44:00 16 * net.sf.bigyo.container.ReconfigurationNotSupportedException 17 * 18 */ 19 public class ReconfigurationNotSupportedException extends ContainerException { 20 21 /*** 22 * 23 */ 24 public ReconfigurationNotSupportedException() { 25 super(); 26 // Auto-generated constructor stub 27 } 28 29 /*** 30 * @param message 31 */ 32 public ReconfigurationNotSupportedException(String message) { 33 super(message); 34 // Auto-generated constructor stub 35 } 36 37 /*** 38 * @param cause 39 */ 40 public ReconfigurationNotSupportedException(Throwable cause) { 41 super(cause); 42 // Auto-generated constructor stub 43 } 44 45 /*** 46 * @param message 47 * @param cause 48 */ 49 public ReconfigurationNotSupportedException(String message, Throwable cause) { 50 super(message, cause); 51 // Auto-generated constructor stub 52 } 53 54 }

This page was automatically generated by Maven